If statements can also
have else ifs attached. e.g.
if condition 1
... 'Section
A
else
if condition
2
... 'Section
B
else
if condition
3
... 'Section
C
else
... 'Section
D
end
if
Section A only
is executed if condition 1 is true.
Section B only is executed if condition 2 is true.
Section C only is executed if condition 3 is true.
If none of the above conditions are true then section D (the
code contained inside the else section) is executed.